home *** CD-ROM | disk | FTP | other *** search
/ Manchester United on CD / Manchester United on CD.iso / advert.dxr / Internal_6.ls < prev    next >
Encoding:
Text File  |  2000-08-30  |  708 b   |  27 lines

  1. on exitFrame
  2.   global gl_advert_videolist, nextvideolist
  3.   if not listp(gl_advert_videolist) then
  4.     gl_advert_videolist = []
  5.   end if
  6.   videolist = getvideosfornextsecion()
  7.   repeat while 1
  8.     nextvideolist = videolist[random(videolist.count)]
  9.     if gl_advert_videolist.getPos(nextvideolist) = 0 then
  10.       gl_advert_videolist.add(nextvideolist)
  11.       exit repeat
  12.     end if
  13.   end repeat
  14.   put nextvideolist
  15.   if gl_advert_videolist.count >= videolist.count then
  16.     tmp = gl_advert_videolist[gl_advert_videolist.count]
  17.     gl_advert_videolist = [tmp]
  18.     put "all ads shown"
  19.   end if
  20.   if nextvideolist.advertType = #still then
  21.     target = "still"
  22.   else
  23.     target = "video"
  24.   end if
  25.   go(target)
  26. end
  27.